home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / BUS / DynRisk 68k 4.01 demo.sit / DynRisk-Help.rsrc / TEXT_6302.txt < prev    next >
Text File  |  1996-08-30  |  3KB  |  103 lines

  1. For Operator 2 you have the following options (assuming that the algorithm is chosen to be 窶廛ouble窶):
  2.  
  3.     窶「 Sum
  4.     窶「 Product
  5.     窶「 Maximum
  6.     窶「 Minimum
  7.     窶「 Minus
  8.     窶「 Divide
  9.     窶「 Greater than
  10.     窶「 Not less than
  11.     窶「 Less than
  12.     窶「 Not grt. than
  13.     窶「 Equal to
  14.     窶「 Not equal to
  15.  
  16. In the following we denote by G the combined value of the global input values, i.e., the result of Operator 1. Moreover, L denotes the local factor of the node, and R denotes a random number generated from the distribution of the node. If the node does not include stochastic values, the R factor is of course skipped.
  17.  
  18. Sum
  19.  
  20. If 窶廾perator 2窶 is 窶彜um窶, then the output value of the node is calculated by using the following rule:
  21.  
  22.     Output value = G + (L ツキ R)
  23.  
  24. Product
  25.  
  26. If 窶廾perator 2窶 is 窶弃roduct窶, then the output value of the node is calculated by using the following rule:
  27.  
  28.     Output value = G ツキ (L ツキ R)
  29.  
  30. Maximum
  31.  
  32. If 窶廾perator 2窶 is 窶廴aximum窶, then the output value of the node is calculated by using the following rule:
  33.  
  34.     Output value = Max(G, (L ツキ R))
  35.  
  36. Minimum
  37.  
  38. If 窶廾perator 2窶 is 窶廴inimum窶, then the output value of the node is calculated by using the following rule:
  39.  
  40.     Output value = Min(G, (L ツキ R))
  41.  
  42. Minus
  43.  
  44. If 窶廾perator 2窶 is 窶廴inus窶, then the output value of the node is calculated by using the following rule:
  45.  
  46.     Output value = G - (L ツキ R)
  47.  
  48. Divide
  49.  
  50. If 窶廾perator 2窶 is 窶廛ivide窶, then the output value of the node is calculated by using the following rule:
  51.  
  52.     Output value = G / (L ツキ R)
  53.  
  54. Note that if L ツキ R = 0, the output value is simply defined to be zero.
  55.  
  56. Greater than
  57.  
  58. If 窶廾perator 2窶 is 窶廨reater than窶, then the output value of the node is calculated by using the following rule:
  59.  
  60.     Output value = 1 if G > (L ツキ R)
  61.  
  62. and zero otherwise.
  63.  
  64. Not less than
  65.  
  66. If 窶廾perator 2窶 is 窶廸ot less than窶, then the output value of the node is calculated by using the following rule:
  67.  
  68.     Output value = 1 if G 竕・ (L ツキ R)
  69.  
  70. and zero otherwise.
  71.  
  72. Less than
  73.  
  74. If 窶廾perator 2窶 is 窶廰ess than窶, then the output value of the node is calculated by using the following rule:
  75.  
  76.     Output value = 1 if G < (L ツキ R)
  77.  
  78. and zero otherwise.
  79.  
  80. Not grt. than
  81.  
  82. If 窶廾perator 2窶 is 窶廸ot grt. than窶, then the output value of the node is calculated by using the following rule:
  83.  
  84.     Output value = 1 if G 竕、 (L ツキ R)
  85.  
  86. and zero otherwise.
  87.  
  88. Equal to
  89.  
  90. If 窶廾perator 2窶 is 窶廢qual to窶, then the output value of the node is calculated by using the following rule:
  91.  
  92.     Output value = 1 if G = (L ツキ R)
  93.  
  94. and zero otherwise.
  95.  
  96.  
  97. Not equal to
  98.  
  99. If 窶廾perator 2窶 is 窶廸ot equal to窶, then the output value of the node is calculated by using the following rule:
  100.  
  101.     Output value = 1 if G 竕  (L ツキ R)
  102.  
  103. and zero otherwise.